From: Matthias Clasen Date: Thu, 4 Nov 2021 00:43:01 +0000 (-0400) Subject: reftest: No blinking, please X-Git-Tag: archive/raspbian/4.6.5+ds-1+rpi1~1^2~91^2^2~189^2 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=e017e4252b4270611bda973e02ea5862f6e4f102;p=gtk4.git reftest: No blinking, please Blinking cursors aren't helpful when we want to compare renderings pixel-by-pixel. Turn them off. --- diff --git a/testsuite/reftests/gtk-reftest.c b/testsuite/reftests/gtk-reftest.c index cd933004f4..232108f46a 100644 --- a/testsuite/reftests/gtk-reftest.c +++ b/testsuite/reftests/gtk-reftest.c @@ -509,6 +509,13 @@ main (int argc, char **argv) if (!parse_command_line (&argc, &argv)) return 1; + /* Override some settings that otherwise might affect + * the reliability of our output. + */ + g_object_set (gtk_settings_get_default (), + "gtk-cursor-blink", FALSE, + NULL); + if (arg_base_dir) basedir = arg_base_dir; else